home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / report_cat.sql < prev    next >
Text File  |  2000-05-12  |  660b  |  18 lines

  1. /* RCSVER $Id: report_cat.sql,v 1.1 1999-06-08 15:51:58-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        report_cat.sql
  6. * Date:        06/05/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the report_cat able, which containts menu categories
  9. *        for all reports.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE report_cat
  13. (
  14.     cat_num        NUMBER(38),    /* Category number */
  15.     cat_desc    VARCHAR2(50),    /* Category name */
  16.         CONSTRAINT pk_report_cat PRIMARY KEY (cat_num)
  17. );
  18.